Properties  Methods 

IMath<T> Interface Members

The following tables list the members exposed by IMath<T>.

Public Properties
 NameDescription
 Property Gets the MaxValue for T.  
 Property Gets the MinValue for T. for DateTime it returns DateTime.MinValue (it has .Ticks = 0)  
 Property Gets the ZeroValue for T. for DateTime it returns DateTime.MinValue (it has .Ticks = 0)  
Top
Public Methods
 NameDescription
 Method Get the Absolute value of (a)  
 Method Adds lhs + rhs. for DateTime it returns a new DateTime with .Ticks = lhs.Ticks + rhs.Ticks  
 Method Returns T-- for DateTime it decrements .Ticks  
 Method Divides lhs / rhs  
 MethodConverts a Double value to type  
 Method Returns T++ for DateTime it increments .Ticks  
 Method Returns if T is NaN. Only valid for Float, Double types. For all other types, always returns false  
 Method Returns the Max of A and B  
 Method Returns the Min of A and B  
 Method Returns the Min of A and B greater than a Floor  
 MethodOverloaded.  Multiplies lhs * rhs  
 Method Subtracts a - b. For DateTime it returns a new DateTime with .Ticks = a.Ticks - b.Ticks  
 Method Converts to the equivalent value as a double  
Top
See Also